The Session Token is returned from CyberStore as a query string variable "SessionToken." Find the token, and store it in your Application’s Session.
See the example below:
| Example Capturing Session Token Code | 
                         
                            Copy Code
                         
                     | 
                
|---|---|
                        
if len (Request.QueryString(“SessionToken”) ) > 0 then
  Session(“SessionToken”) = Request.QueryString(“SessionToken”)
End If
                     | 
                |